Description of Keys & Commands
==============================
English translation comming soon (I hope)


Command-Group "STR": String variables
=====================================

With the STR commands it is possible to work with variable text modules,
for example by generating buttons with different STR definitions (SET).
Later buttons with text documents which includes the CALL commands can
be send with variable text modules.


/STR.>.CLIP no ........: To copy variable STR <no> (1-10) into the clipboard
/STR.<.CLIP no ........: To set the clipboard content (text only) to variable STR <no> (1-10)
------------------------

Examples:
{/STR.>.CLIP 1}
{/STR.<.CLIP 2}


/STR.ASK no ...........: To set a string to variable STR <no>, defined during script is in process
------------------------

Example: {/STR.ASK 5}

--> Tip
Wird der Dialog durch "Abbrechen" geschlossen, so kann die Skript-Abarbeitung
an dieser Stelle durch den Commands "BTCH.EXIT-ON-CANCEL" (siehe dort) beendet
werden.


/STR.CALL no ..........: To send the string, included in STR <no> (1-10)
------------------------

Example: {/STR.CALL 3}


/STR.CLR ..............: To clear all string variables (STR 1-10)
------------------------

Example: {/STR.CLR}


/STR.CLIP.REPLACE no,txt To replace text <txt> in clip by STR <no> (1-10)
------------------------

Example:

{/BTCH.EXPLICIT}
{/STR.SET 1,new}
{/STR.CLIP.REPLACE 1,old}

Hier werden alle Wrter "old" in der Zwischenablage durch "new" ersetzt.


/STR.LOAD [name] ......: To load a variable set (STR 1-10) from disk
/STR.SAVE [name] ......: To save variables STR 1-10 on disk (name = optional)
------------------------

Examples:
{/STR.LOAD}
{/STR.SAVE Tel1}

--> Note!
Vermeide die Verwendung von DOS-reservierten Sonderzeichen (\) in <name>, andernfalls
fhrt es zu einer Fehlermeldung.


/STR.SET no,str .......: To set the string <str> to the variable STR <no> (1-10)
------------------------

Example: {/STR.SET 4,Nice to see you}


/STR.VIEW .............: To show the contents of variables STR 1-10 in the internal text viewer
------------------------

Example: {/STR.VIEW}


Example:

Button 1: {/STR.SET 1,invoice}
Button 2: {/STR.SET 1,reminder}

Button 3: This is a {/STR.CALL 1}
